home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm2 / mm_1_2.lha / MM / Rexx / MM_WriteLog.rexx < prev   
OS/2 REXX Batch file  |  1996-04-30  |  185b  |  16 lines

  1. /*
  2. ** This script shows how to use the
  3. ** MM_WriteLog command.
  4. */
  5.  
  6. address 'MAILMANAGER'
  7.  
  8. num = 10
  9. string = "I have Imported "num" messages"
  10.  
  11. say string
  12.  
  13. MM_WriteLog 'string' 3
  14.  
  15. say RC
  16.